home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap01 / b01a015.cc2 < prev    next >
Text File  |  1998-06-07  |  2KB  |  35 lines

  1. 0, In Visual Basic, each user interface 
  2. 3, element in a program, including the form 
  3. 6, itself, has a set of definable properties. 
  4. 9, You can set these properties at design 
  5. 11, time with the Properties window or you 
  6. 13, can set these properties at run-time with 
  7. 15, program code. When you're first learning 
  8. 18, Visual Basic, however, property 
  9. 19, settings can be a difficult concept to grasp. 
  10. 23, Putting them in terms of something from 
  11. 24, everyday life can help. Consider the 
  12. 26, following bicycle analogy. A bicycle is an 
  13. 30, object that you ride from one place to 
  14. 32, another. Since a bicycle is a physical 
  15. 35, object, it has several inherent 
  16. 37, characteristics. It has a brand name, a color, 
  17. 41, gears, brakes, and wheels, and it is built 
  18. 45, in a particular style. It could be a 
  19. 48, touring bike, a mountain bike, or a bicycle 
  20. 51, built for two. In Visual Basic 
  21. 54, terminology, these characteristics are the 
  22. 56, properties of the bicycle object. The mold 
  23. 60, that created the bicycle frame would be 
  24. 62, called the bicycle control. To continue the 
  25. 65, analogy, most of the bicycle's 
  26. 67, characteristics would be defined while the 
  27. 69, bicycle was being built. But a few additional 
  28. 71, ones, such as lights, storage 
  29. 74, compartments, and a horn could be properties that 
  30. 77, change as the bicycle is used. As you 
  31. 81, work with Visual Basic objects, you'll 
  32. 83, use both types of property settings: 
  33. 85, values that are set at design time and values 
  34. 88, that are set at run-time.
  35. 93, END